home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / toolbox / rem < prev    next >
Text File  |  1994-05-21  |  481b  |  19 lines

  1. //-------------------------------------------------------------------//
  2. //
  3. //  Syntax:     rem ( A, B )
  4.  
  5. //  Description:
  6.  
  7. //  Calculate remainders.
  8. //  `mod ( A, B )' is equivilant to `rem ( A, B)'. Mod is a builtin
  9. //  function, and is much faster when operating on matrices. Rem is
  10. //  provided mostly for MATLAB compatibility.
  11.  
  12. //-------------------------------------------------------------------//
  13.  
  14. rem = function(x,y) 
  15. {
  16.   # return (x-y.*int(x./y));
  17.   return mod (x, y);
  18. };
  19.